home *** CD-ROM | disk | FTP | other *** search
/ Light ROM 1 / LIGHT-ROM 1 (Amiga Library Services)(1994).iso / ffdisks / d939.lha / ExtraCmds / source_etc.lha / src / printErrorMsg.c < prev    next >
C/C++ Source or Header  |  1993-10-22  |  2KB  |  65 lines

  1. /*   ---------------------------------      -------     
  2.  *   |\  | | | | |  |.| |   \|  |/ /|\      |||||||     
  3.  *   | | | |/  | |\ |/  |/|  |\ |/  |    ?  ---+---  =< 
  4.  *   | | | |   | |  |     |  |  |   |     \qqqqqqqqq/   
  5.  *   ---------------------------------  ~~~~~~~~~~~~~~~~
  6.  *  printErrorMsg() - handles the printing of DOS error messages.
  7.  *  Copyright (C) 1993 Torsten Poulin
  8.  *
  9.  *  This file is part of "Torsten's AmigaDOS Shell Commands" package.
  10.  *  The package is free software; you can redistribute it and/or modify
  11.  *  it under the terms of the GNU General Public License as published by
  12.  *  the Free Software Foundation; either version 2 of the License, or
  13.  *  (at your option) any later version.
  14.  *
  15.  *  The package is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with this program; if not, write to the Free Software
  22.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  *
  24.  *  The author can be contacted by s-mail at
  25.  *    Torsten Poulin
  26.  *    Banebrinken 99, 2, 77
  27.  *    DK-2400 Copenhagen NV
  28.  *    DENMARK
  29.  *
  30.  * $Id: printErrorMsg.c,v 1.2 93/03/01 13:01:12 Torsten Rel $
  31.  * $Log:    printErrorMsg.c,v $
  32.  * Revision 1.2  93/03/01  13:01:12  Torsten
  33.  * Changed all occurrences of "struct DosBase *" to "struct DosLibrary *"
  34.  * 
  35.  * Revision 1.1  93/03/01  11:03:13  Torsten
  36.  * Initial revision
  37.  * 
  38.  */
  39.  
  40. #include <exec/types.h>
  41. #include <dos/dos.h>
  42. #include <dos/dosasl.h>
  43. #include <clib/dos_protos.h>
  44. #ifdef __SASC
  45. #include <pragmas/dos_pragmas.h>
  46. #endif
  47.  
  48. LONG printErrorMsg(LONG rc, UBYTE *text, struct DosLibrary *DOSBase)
  49. {
  50.   if (rc == ERROR_BREAK)
  51.   {
  52.     PrintFault(ERROR_BREAK, NULL);
  53.     rc = RETURN_WARN;
  54.   }
  55.   else if (rc == ERROR_NO_FREE_STORE)
  56.   {
  57.     PrintFault(ERROR_NO_FREE_STORE, text);
  58.     rc = RETURN_FAIL;
  59.   }
  60.   else if (rc != RETURN_OK)
  61.     PrintFault(IoErr(), text);
  62.  
  63.   return rc;
  64. }
  65.